home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 September
/
CHIP NET Rehberi Eylül 1998.iso
/
ftp
/
iftp21
/
EXAMPLES.ZIP
/
EXAM6.BAT
< prev
next >
Wrap
DOS Batch File
|
1997-05-22
|
258b
|
15 lines
@echo off
: test iFTP example script exam6.ftp in a batch file to catch the halt
: errorlevel
iftp /run exam6
if errorlevel 1 goto error
echo batch file successful!
goto end
:error
echo error with iFTP script exam6
goto end
:end